-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update IssueEvent ID field from int to long #2060
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2060 +/- ##
==========================================
- Coverage 70.79% 67.06% -3.74%
==========================================
Files 538 538
Lines 14139 14139
==========================================
- Hits 10010 9482 -528
- Misses 4129 4657 +528
|
(the code coverage reduction is a little disconcerting, given that this was all 1:1 type/name changes) |
Yeah, I had a poke at the places it say were regressed but I can't spot anything I should be worried about 🤷♂ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for the contribution @SteveDesmond-ca!
release_notes: changed |
This PR fixes issues #1979 and #2031 (stack overflow when attempting to retrieve events on issues due to large ID numbers) and replaces the seemingly-abandoned PR #2037.
In addition to changing the types of the relevant field and parameters, the names of the parameters have also been updated (from
number
toeventId
) to better reflect what's expected to be passed.